翻訳と辞書
Words near each other
・ Message in a bottle
・ Message in a bottle (disambiguation)
・ Message in a Bottle (film)
・ Message in a Bottle (novel)
・ Message in a Bottle (song)
・ Message in Our Music
・ Message in the Music
・ Message loop in Microsoft Windows
・ Message Man
・ Message Maps
・ Message of Guru Granth Sahib
・ Message of Thaqalayn
・ Message oriented middleware
・ Message Oriented Text Interchange Systems
・ Message Parsing Interpreter
Message passing
・ Message passing (disambiguation)
・ Message passing in computer clusters
・ Message Passing Interface
・ Message picture
・ Message posting protocol
・ Message precedence
・ Message queue
・ Message queuing service
・ Message Received
・ Message send protocol
・ Message sequence chart
・ Message Session Relay Protocol
・ Message Signaled Interrupts
・ Message Stick


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Message passing : ウィキペディア英語版
Message passing

In computer science, message passing sends a message to a process (which may be an actor or object) and relies on the process and the supporting infrastructure to select and invoke the actual code to run. Message passing differs from conventional programming where a process, subroutine, or function is directly invoked by name. Message passing is key to some models of concurrency and object-oriented programming.
Message passing is used ubiquitously in modern computer software. It is used as a way for the objects that make up a program to work with each other and as a way for objects and systems running on different computers (e.g., the Internet) to interact. Message passing may be implemented by various mechanisms, including channels.
== Overview ==
Message passing is a technique for invoking behavior (i.e., running a program) on a computer. In contrast to the traditional technique of calling a program by name, message passing uses an object model to distinguish the general function from the specific implementations. The invoking program sends a message and relies on the object to select and execute the appropriate code. The justifications for using an intermediate layer essentially falls into two categories: encapsulation and distribution.
Encapsulation is the idea that software objects should be able to invoke services on other objects without knowing or caring about how those services are implemented. Encapsulation can reduce the amount of coding logic and make systems more maintainable. E.g., rather than having IF-THEN statements that determine which subroutine or function to call a developer can just send a message to the object and the object will select the appropriate code based on its type.
One of the first examples of how this can be used was in the domain of computer graphics. There are all sorts of complexities involved in manipulating graphic objects. For example, simply using the right formula to compute the area of an enclosed shape will vary depending on if the shape is a triangle, rectangle, elipse, or circle. In traditional computer programming this would result in long IF-THEN statements testing what sort of object the shape was and calling the appropriate code. The object-oriented way to handle this is to define a class called Shape with subclasses such as Rectangle and Ellipse (which in turn have subclasses Square and Circle) and then to simply send a message to any Shape asking it to compute its area. Each Shape object will then invoke the appropriate code with the formula appropriate for that kind of object.
Distributed message passing provides developers with a layer of the architecture that provides common services to build systems made up of sub-systems that run on disparate computers in different locations and at different times. When a distributed object is sending a message, the messaging layer can take care of issues such as:
* Finding the appropriate object, including objects running on different computers, using different operating systems and programming languages, at different locations from where the message originated.
* Saving the message on a queue if the appropriate object to handle the message is not currently running and then invoking the message when the object is available. Also, storing the result if needed until the sending object is ready to receive it.
* Controlling various transactional requirements for distributed transactions, e.g. ensuring ACID properties on data.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Message passing」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.